home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 11348 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  590 b 

  1. Path: darkwing.cadvision.com!usenet
  2. From: douglasd@cadvision.com (Doran Douglas)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Float to String
  5. Date: Sat, 23 Mar 1996 11:06:47 GMT
  6. Organization: CADVision
  7. Message-ID: <4j0m8a$1mem@darkwing.cadvision.com>
  8. References: <4is29s$h1a@dfw-ixnews6.ix.netcom.com>
  9. NNTP-Posting-Host: cadd53.cadvision.com
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. scoshe@ix.netcom.com(Christopher Scott Shelton ) wrote:
  13.  
  14. >Is it possible to convert a float to a string?  like the itoa function.
  15. try strcpy 'ing the float to a string array
  16. eg strcpy(string, float_variable_name);
  17.  
  18.  
  19.  
  20.